home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00045_FileStructTools.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.0 KB  |  137 lines

  1. --
  2. -- fileStructTools
  3. --
  4.  
  5. property ancestor
  6. property pathDelim
  7.  
  8.  
  9. on new me
  10.   -- set constants:
  11.   if the machineType = 256 then
  12.     set pathDelim = "\"
  13.   else
  14.     set pathDelim = ":"
  15.   end if
  16.   
  17.   -- initialize the ancestor:
  18.   set ancestor = new (script "StringTools")
  19.   
  20.   return me
  21. end
  22.  
  23.  
  24. -- clear out all of my stuff
  25.  
  26. on destruct me
  27.   -- destruct my chain
  28.   if objectP (ancestor) then destruct (ancestor)
  29.   set ancestor = 0
  30. end
  31.  
  32.  
  33. -- return the pathDelimiter
  34. on pD me
  35.   return pathDelim
  36. end
  37.  
  38. -- this will look at a pathname and, based on the pathDelimiter, remove one level from it
  39. -- this defaults to the current "the pathName", or you can pass it a platform specific path
  40. on levelUpPath me, oldPath
  41.   if voidP(oldPath) then
  42.     set oldPath = the pathName
  43.   else 
  44.     -- we have a non - void path, make sure they passed in one with some path info in it
  45.     if not(oldPath contains pD(me)) then
  46.       return 0
  47.     end if
  48.   end if
  49.   
  50.   -- now we want to dissect this puppy
  51.   set the itemDelimiter = pD(me)
  52.   
  53.   if char (the number of chars of oldPath) of oldPath = pD(me) then
  54.     delete char (the number of chars of oldPath) of oldPath
  55.     delete the last item of oldPath
  56.   else
  57.     delete the last item of oldPath
  58.   end if
  59.   
  60.   set the itemDelimiter = ","
  61.   
  62.   -- now we just want to make sure that our return values are consistent
  63.   if oldPath = "" then
  64.     return 0
  65.   else
  66.     return (oldPath & pD(me))
  67.   end if
  68.   
  69. end
  70.  
  71. -- given a path, this will return all the items in that path
  72. -- assumes the path is valid
  73. on filesAndFolders me, thePath
  74.   put [] into fileList
  75.   repeat with i = 1 to the maxInteger
  76.     set n = getNthFileNameInFolder(thePath, i)
  77.     
  78.     if n = EMPTY or n = "" then 
  79.       exit repeat
  80.     else
  81.       append(fileList, stringToUpper(me, n))
  82.     end if  
  83.   end repeat
  84.   
  85.   if fileList = [] then
  86.     return 0
  87.   else
  88.     return fileList
  89.   end if
  90.   
  91. end
  92.  
  93. -- find out if this path is pointing to a folder
  94. on isFolder me, thePath
  95.   -- we are just going to check if the first entry is available
  96.   set fileCheck = getNthFileNameInFolder(thePath, 1)
  97.   
  98.   if fileCheck = "" then
  99.     return 0
  100.   else
  101.     return 1
  102.   end if
  103. end
  104.  
  105. -- this looks into a folder to see if it contains a file
  106. on folderContains me, thePath, theFile
  107.   set theFiles = []
  108.   set theFiles = filesAndFolders(me, thePath)  
  109.   
  110.   -- now we want to see if the folder contains the file
  111.   if theFiles <> 0 then
  112.     if getPos(theFiles, stringToUpper(me, theFile)) <> 0 then
  113.       return 1
  114.     else
  115.       return 0
  116.     end if
  117.   else 
  118.     return 0
  119.   end if
  120. end
  121.  
  122. -- recursive looking for a file in a folder up above thePath
  123. on findFileUpStream me, thePath, theFile
  124.   -- put "looking in: " & thePath & " for: " & theFile
  125.   if folderContains(me, thePath, theFile) then
  126.     return thePath & theFile & pD(me)
  127.   else
  128.     -- now we check to see if we hit the root of the drive and tried to go back one
  129.     set thePath = levelUpPath(me, thePath)
  130.     if thePath = 0 then
  131.       return 0
  132.     else
  133.       -- recurse
  134.       return findFileUpStream(me, thePath, theFile)
  135.     end if
  136.   end if
  137. end